Convert raster from ellispoidal height to orthometric altitude

Differences between ellipsoidal height and orthometric altitude (or geoid height) are explained here https://spatialthoughts.com/2019/10/26/convert-between-orthometric-and-ellipsoidal-elevations-using-gdal/ The definition of the projection is the PROJ4 line that can be found on https://spatialreference.org/ examples gdalwarp -s_srs “+proj=utm +zone=33 +datum=WGS84 +units=m +no_defs” -t_srs “+proj=utm +zone=33 +datum=WGS84 +units=m +no_defs +geoidgrids=egm96_15.gtx” input.tif output.tif gdalwarp -s_srs “+proj=lcc +lat_0=46.5 +lon_0=3 +lat_1=49 +lat_2=44 +x_0=700000 +y_0=6600000 … Continue reading Convert raster from ellispoidal height to orthometric altitude